/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100..900&display=swap');



.vazirmatn {
  font-family: "Vazirmatn",;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body,html,h1,a{
  font-family:vazirmatn ;
  font-weight: 300;
  font-style: normal;
  font-size: large;
}

html{
  color: black;
}


header{
  display: flex;
  flex-direction: column;
  align-items: center;
  
}
ul{
  margin-top:6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-color: 2px;
}

li{
  line-height: 1.4;
  text-decoration-line: underline;
}
section{
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-auto-flow: dense;
  line-height: 1.4;
}

a{
  text-decoration:none;
  color: black;

}
footer{
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  align-items:center;
}

@media(any-hover: hover){
	li:hover{
		transform: scale(1.08);
	}
}

@media(any-hover: hover){
	h3:hover{
		transform: scale(1.08);
	}
}


.contact li {
  text-decoration:none;
}

/* Container Setup */
.container {
  display: flex;
  height: 100vh; /* Full viewport height */
}

/* Information Column */
.info-column {
  flex: 1; /* Takes up half the width */
  padding: 20px;
  background-color: #ffffff;
  overflow-y: auto; /* Scrollable if content overflows */
}

/* Image Column */
/* Updated Image Column */
.image-column {
  flex: 1; /* Adjusts the width of the image column */
  display: flex; /* Use flexbox for proper alignment */
  justify-content: flex-end; /* Push content to the right */
  padding: 20px;
  overflow-y: auto;
  background-color: #fff;
}

/* Updated Image Scrolling Section */
.image-scroll {
  display: flex;
  flex-direction: column; /* Stack images vertically */
  gap: 20px; /* Space between images */
  align-items: flex-end; /* Align images to the right */
}

.image-scroll img {
  max-width: 90%; /* Keep images from being too large */
  height: auto; /* Maintain aspect ratio */
  border: 2px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

a{

  color: black;
}

p{
  padding-top: 1.5rem;
}
